home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / programs / vbbs542.zip / VFOSSIL.DOC < prev    next >
Text File  |  1992-02-03  |  4KB  |  115 lines

  1.  
  2.  
  3.  
  4.                                 VFOSSIL.DOC
  5.  
  6.                         Using a Fossil Driver with VBBS
  7.  
  8.                           Roland De Graaf 1/22/1992
  9.                               Revised 1/29/1992
  10.  
  11.          The fossil driver can open up a whole new world to VBBS.
  12.  
  13.          The "standard" serial driver which comes with VBBS is
  14.          not able to allow IRQ sharing between COM ports.
  15.          This is not so much a limitation in the serial driver, as it
  16.          is a limitation of the underlying operating environement.
  17.  
  18.          A FOSSIL driver, on the other hand, can handle 2 or more
  19.          serial ports using the same IRQ line. In fact, a FOSSIL
  20.          can be used to control up to 8 ports. It can be "programmed"
  21.          to use almost any serial board in existance.
  22.          
  23.          For the purposes of this document, we shall refer to the
  24.          X00 and BNU fossil drivers. If you're new to fossil drivers,
  25.          they are a "standard" way for programs to communicate with
  26.          serial ports, and you only need one installed on your system
  27.          in order to make use of it.
  28.  
  29.          X00 is one type of fossil driver that loads thru CONFIG.SYS.
  30.          BNU is a another type of fossil driver that loads thru AUTOEXEC.BAT.
  31.          Both programs do roughyl the same thing, and yu have your choice of
  32.          which one you wish to use.
  33.          
  34.          ** Number of simultaneous open ports **
  35.          ***************************************
  36.          
  37.          The "basic" CONFIG.SYS install line for X00 looks like:
  38.  
  39.          DEVICE=X00.SYS
  40.  
  41.          The "basic" AUTOEXEC.BAT install line for BNU is:
  42.  
  43.          BNU
  44.  
  45.          By default, a fossil will assume you wish to have only
  46.          ONE COM port open at any given moment.
  47.          
  48.          This doesnt specify WHICH port (COM1, COM2, COM3, etc),
  49.          but specifies the maximum number of simultaneous open
  50.          ports.
  51.          
  52.          Each Port you request is like a "data channel," corresponding
  53.          to your VBBS data channels.
  54.  
  55.          It is possible to request that the fossil make more ports
  56.          available to you. 
  57.          
  58.          For more detailed information on the driver, consult 
  59.          the fossil documentation.
  60.  
  61.  
  62.          * VBBS Set Up *
  63.          ***************
  64.  
  65.          Set up your VBBS Data Channels as you normally would.
  66.          
  67.          ***********************************************************
  68.          
  69.          VBBS - 2 user system example
  70.          ----------------------------
  71.          Ch 1 to be on COM1
  72.          Ch 2 to be on COM2
  73.          ------------------
  74.          X00:
  75.          DEVICE=X00.SYS 0=COM1 1=COM2
  76.          BNU:
  77.          BNU /P=2
  78.          ---------------------------------------
  79.          VCONFIG: Set Channel 1 to COM1
  80.                   Set Channel 2 to COM2
  81.          ***********************************************************
  82.          
  83.          VBBS - 2 user system example
  84.          ----------------------------
  85.          Ch 1 to be on COM2
  86.          Ch 2 to be on COM3
  87.          ------------------
  88.          X00:
  89.          DEVICE=X00.SYS 0=COM2 1=COM3
  90.          BNU:
  91.          BNU /P=2
  92.          ---------------------------------------
  93.          VCONFIG: Set Channel 1 to COM2
  94.                   Set Channel 2 to COM3
  95.          ***********************************************************
  96.          
  97.          VBBS - 4 user system example
  98.          ----------------------------
  99.          Ch 1 to be on COM1
  100.          Ch 2 to be on COM2
  101.          Ch 3 to be on COM3
  102.          Ch 4 to be on COM4
  103.          ------------------
  104.          X00:
  105.          DEVICE=X00.SYS 0=COM1 1=COM2 2=COM3 3=COM4
  106.          BNU:
  107.          BNU /P=4
  108.          ---------------------------------------
  109.          VCONFIG: Set Channel 1 to COM1
  110.                   Set Channel 2 to COM2
  111.                   Set Channel 3 to COM3
  112.                   Set Channel 4 to COM4
  113.          ***********************************************************
  114.          
  115.